home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / DELPHI32 / DATABASE / MRO / MROPROJ1.DPR < prev    next >
Text File  |  1996-05-05  |  204b  |  14 lines

  1. program Mroproj1;
  2.  
  3. uses
  4.   Forms,
  5.   Mrounit1 in 'MROUNIT1.PAS' {Form1};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.Title := 'MRO Demo';
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.Run;
  13. end.
  14.